home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / gnustuff / tos / updates / update17.zoo / lib / diffc
Encoding:
Text File  |  1992-03-10  |  3.0 KB  |  117 lines

  1. *** 1.67    1992/03/06 19:19:47
  2. --- Changelo    1992/03/10 15:18:36
  3. ***************
  4. *** 2854,2856 ****
  5. --- 2854,2862 ----
  6.       make mktemp() more MiNT friendly by using pid when __mint.
  7.   
  8.   ---------------------------- Patchlevel 76 ---------------------------
  9. + memcpy.s:: ++jrb
  10. +     in the upcopy loop setup for the oddeven case, the count was being
  11. +     moved with a movw instead of movl.
  12. + ---------------------------- Patchlevel 77 ---------------------------
  13. *** 1.52    1992/03/06 19:19:47
  14. --- PatchLev.h    1992/03/10 15:18:38
  15. ***************
  16. *** 1,5 ****
  17.   
  18. ! #define    PatchLevel "76"
  19.   
  20.   /*
  21.    *
  22. --- 1,5 ----
  23.   
  24. ! #define    PatchLevel "77"
  25.   
  26.   /*
  27.    *
  28. *** 1.28    1992/03/06 19:19:47
  29. --- makefile.16    1992/03/10 15:19:03
  30. ***************
  31. *** 9,24 ****
  32.   LIB = d:\gnu\lib
  33.   
  34.   # common subset of options; no int size or omit-frame-pointer:
  35. ! COPTS= -O -fstrength-reduce -DNDEBUG $(XFLAGS)
  36.   
  37.   # Base options CC; includes int size but not omit-frame-pointer
  38.   CFFLAGS = $(COPTS) -mshort
  39.   
  40.   # normal CFLAGS including int size and omit-frame-pointer
  41. ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
  42.   
  43.   # cflags for stuff that needs to be compiled with 32 bit ints
  44. ! CLFLAGS= $(COPTS) -DSHORTLIB -fomit-frame-pointer
  45.   
  46.   # flags to $(CC) when it runs the assembler only
  47.   ASFLAGS= -c
  48. --- 9,24 ----
  49.   LIB = d:\gnu\lib
  50.   
  51.   # common subset of options; no int size or omit-frame-pointer:
  52. ! COPTS= -O2 -fstrength-reduce -DNDEBUG $(XFLAGS)
  53.   
  54.   # Base options CC; includes int size but not omit-frame-pointer
  55.   CFFLAGS = $(COPTS) -mshort
  56.   
  57.   # normal CFLAGS including int size and omit-frame-pointer
  58. ! CFLAGS= $(CFFLAGS) # -fomit-frame-pointer
  59.   
  60.   # cflags for stuff that needs to be compiled with 32 bit ints
  61. ! CLFLAGS= $(COPTS) -DSHORTLIB # -fomit-frame-pointer
  62.   
  63.   # flags to $(CC) when it runs the assembler only
  64.   ASFLAGS= -c
  65. *** 1.27    1992/03/06 19:19:47
  66. --- makefile.32    1992/03/10 15:19:03
  67. ***************
  68. *** 9,21 ****
  69.   LIB = d:\gnu\lib
  70.   
  71.   # common subset of options; no int size or omit-frame-pointer:
  72. ! COPTS= -O -fstrength-reduce -DNDEBUG $(XFLAGS)
  73.   
  74.   # Base options CC; includes int size but not omit-frame-pointer
  75.   CFFLAGS = $(COPTS)
  76.   
  77.   # normal CFLAGS including int size and omit-frame-pointer
  78. ! CFLAGS= $(CFFLAGS) -fomit-frame-pointer
  79.   
  80.   # cflags for stuff that needs to be compiled with 32 bit ints
  81.   CLFLAGS= $(CFLAGS)
  82. --- 9,21 ----
  83.   LIB = d:\gnu\lib
  84.   
  85.   # common subset of options; no int size or omit-frame-pointer:
  86. ! COPTS= -O2 -fstrength-reduce -DNDEBUG $(XFLAGS)
  87.   
  88.   # Base options CC; includes int size but not omit-frame-pointer
  89.   CFFLAGS = $(COPTS)
  90.   
  91.   # normal CFLAGS including int size and omit-frame-pointer
  92. ! CFLAGS= $(CFFLAGS) # -fomit-frame-pointer
  93.   
  94.   # cflags for stuff that needs to be compiled with 32 bit ints
  95.   CLFLAGS= $(CFLAGS)
  96. *** 1.1    1992/03/06 19:19:47
  97. --- memcpy.s    1992/03/10 15:19:04
  98. ***************
  99. *** 71,77 ****
  100.   return:    rts
  101.   
  102.   oddeven:
  103. !     movw    d0,d1
  104.       swap    d1
  105.       jra    upbra
  106.   upcopy:                | byte-by-byte forward
  107. --- 71,77 ----
  108.   return:    rts
  109.   
  110.   oddeven:
  111. !     movl    d0,d1
  112.       swap    d1
  113.       jra    upbra
  114.   upcopy:                | byte-by-byte forward
  115.